home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / FREENET / BRODIE / INTERNET / !InternetD / h / ntalk < prev    next >
Text File  |  1995-05-16  |  381b  |  20 lines

  1. #include "ntalkd.h"
  2.  
  3. #define NTALKSIZE    84
  4. #define TAB_ENTRIES    8
  5.  
  6. struct table_ent {
  7.         CTL_MSG            request; /* must be first entry */
  8.         int            inuse;
  9.     int             time;
  10.     int            want_foreground;
  11. };
  12.  
  13. struct ntalk {
  14.         CTL_MSG            request;
  15.         CTL_RESPONSE        response;
  16.         unsigned long        unique_id;
  17.     int            want_foreground;
  18.         struct     table_ent    table[TAB_ENTRIES];
  19. };
  20.